<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mensajes de Alerta en JavaScript</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 20px;
}
button {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
</style>
</head>
<body>
<h1>Prueba de Mensajes de Alerta en JavaScript</h1>
<p>Haz clic en el botón para ver un mensaje de alerta.</p>
<button id="alertButton">Mostrar Alerta</button>
<script>
// Seleccionamos el botón
const button = document.getElementById('alertButton');
// Agregamos un evento de clic al botón
button.addEventListener('click', function() {
// Mostramos un mensaje de alerta
alert("¡Hola! Este es un mensaje de alerta en JavaScript.");
});
</script>
</body>
</html>